home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / m / mpegplay / mpeg_sys / mpeg_sys.txt < prev   
Encoding:
Text File  |  1996-11-03  |  2.4 KB  |  63 lines

  1.             MPEG_SYS Jan 17 1995
  2.  
  3.     Analyzing and Converting Tool for MPEG System Layer Streams.
  4.  
  5.  
  6. See in the source code for copyrights. It was compiled with Pure-C
  7. and should run on all Atari TOS machines. The source is not very
  8. portable to other systems, but the original code was also not very
  9. portable at least for Pure-C, so it should be allowed.
  10. Note, that I replaced the standard library file i/o by much more
  11. efficient schemes for better dealing with large streams.
  12.  
  13.  
  14. Usage:    mpeg_sys [-l] [input] [output]
  15.  
  16. option -l:
  17.     Put logging of system layer parsing to stdout.
  18.  
  19. This causes all logging information to be displayed onto screen
  20. (redirect it to a file if you want). The output is very detailed
  21. and therefore may become very large, so better leave this option
  22. off in normal cases (especially for large input streams).
  23. It should only be useful if errors are detected in normal run.
  24.  
  25. input:
  26.     MPEG System Layer Stream.
  27.  
  28. This is the MPEG source stream. The program first checks if it is
  29. an MPEG system layer stream or not and displays the result.
  30. If the check failes, execution is cancelled. This is also the case
  31. for pure MPEG video streams, since this is only a system layer
  32. parser.
  33. If it is a system layer stream, parsing is done, and success or
  34. failure is displayed at the end. Finally, some statistics are
  35. shown.
  36.  
  37. output:
  38.     MPEG Video Stream extracted from input.
  39.  
  40. If this parameter is given, the video packets parsed off the input
  41. stream are written into the output file. This will generate a pure
  42. MPEG video stream, which can be processed by normal MPEG video
  43. players.
  44. On Atari, these are 1STGUIDE (all machines, all frame types) and
  45. MPEGDSP (Falcon-030 only, I-frames only), both from the author of
  46. this utility. Future versions of these programs will directly
  47. support MPEG system layer streams.
  48. Of course, the output file might become very large for large input
  49. streams, so make sure you have enough disk space. The program will
  50. display error messages, however, if output writing failes.
  51. If you are not sure to have enough room, you may run the program
  52. without specifying an output first. After parsing you will see the
  53. number of video bytes found (last line). This is exactly the size
  54. of the output file if it is written!
  55.  
  56. Note: If the input stream should contain more than one video
  57.       stream, only the first stream found is processed (same
  58.       for audio).
  59.  
  60.  
  61. If you find bugs or have ideas for extentions, please let me
  62. know...
  63.